home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tech Arsenal 1
/
Tech Arsenal (Arsenal Computer).ISO
/
tek-03
/
qbfaqr01.zip
/
DISKEYB.BAS
< prev
next >
Wrap
BASIC Source File
|
1992-08-09
|
340b
|
18 lines
SUB DisableKeyboard ()
'Purpose : To disable the keyboard
'Input : none
'Return : none
OUT &H21, (INP(&H21) OR 2)
END SUB
SUB EnableKeyboard ()
'Purpose : To enable keyboard use after being disabled by DisableKeyboard
'Input : none
'Output : none
OUT &H21, (INP(&H21) AND 253)
END SUB